home *** CD-ROM | disk | FTP | other *** search
- /* cscanf.c --- p 513 */
- /* compile this program with the -ml option */
- #include <conio.h>
- main()
- {
- int i;
- char far *far_ptr;
- cprintf("Enter memory address to dump in the form "
- "ssss:oooo\r\n(Try F0000:E0000) ");
- cscanf(" %p", &far_ptr);
- cprintf("Dump of 25 bytes at %p\r\n", far_ptr);
- for(i=0; i<25; i++)
- cprintf("%Fc", *(far_ptr+i));
- }